body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
	/*background: url("https://static.vecteezy.com/system/resources/previews/002/252/606/original/abstract-geometric-green-modern-decorative-stylish-banner-background-free-vector.jpg") no-repeat center/ cover; */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    padding: 10px 20px;
}

.brand {
    position: relative; /* Enables positioning of the h6 element */
}

.brand a {
    text-decoration: none;
    color: white !important;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center; /* Aligns icon and text horizontally */
    gap: 8px; /* Adds space between the icon and the text */
    transition: color 0.3s ease;
}

.brand a:hover {
    color: rgb(255, 255, 255);
}


.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f4a261;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #f4a261;
}

.nav-links a:hover::after {
    width: 100%;
}




main {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
    /* background: linear-gradient(to bottom, #4CAF50, #4CAF50, #4CAF50); */
	background: url("https://wallpaperaccess.com/full/4174801.jpg") no-repeat center/ cover;
}
	

.main{
	width: 350px;
	height: 500px;
	background: red;
	overflow: hidden;
	background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/ cover;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 10px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
}
button{
	width: 60%;
	height: 35px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #429445;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #054318;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: #573b8a;
	transform: scale(.6);
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}

.register-forget {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}
.opacity {
    opacity: 0.6;
}

/* adiding header */
header {
    background-color: #4CAF50;
    padding: 1rem;
    text-align: left;
}

header h1 {
    color: white;
}

header .team-name {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: right !important;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    background-color: #4CAF50;
    padding: 1rem;
    color: white;
    margin-top: 0px;
}